home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Apr / di9804gk / d2form.pas < prev    next >
Pascal/Delphi Source File  |  1997-06-03  |  543b  |  35 lines

  1. unit d2form;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   FMMINMAX;
  8.  
  9. type
  10.   TMinMaxForm1 = class(TMinMaxForm)
  11.     procedure FormCreate(Sender: TObject);
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   MinMaxForm1: TMinMaxForm1;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. procedure TMinMaxForm1.FormCreate(Sender: TObject);
  26. begin
  27.   inherited;
  28.  
  29.   ResizeMaxHeight := 200;
  30.   ResizeMinWidth := 400;
  31.   ResizeMinHeight := 100;
  32. end;
  33.  
  34. end.
  35.